home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _712B2B403C5D41C483D9EEE527EF960E < prev    next >
Encoding:
Text File  |  2006-08-04  |  1.3 KB  |  39 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'Old brush with clumped bristles loaded with thick paint but soft tipped '\
  8.             u'enough to apply long, smooth, expressive strokes without leaving streaks in the pai'\
  9.             u'nt.',
  10.         'Host': u'Paint Shop Pro 9',
  11.         'Host Version': u'9.00'
  12.         }
  13.  
  14. def Preset_OilBrushTool():
  15.     return {
  16.         'Size': 35, 
  17.         'Shape': App.Constants.ArtMediaBrushShape.Elliptical, 
  18.         'Thickness': 100, 
  19.         'Rotation': 0, 
  20.         'HeadTracking': App.Constants.ArtMediaBrushRotation.RotateAlongPath, 
  21.         'Material': None, 
  22.         'Trace': False, 
  23.         'HeadLoad': 100, 
  24.         'Viscosity': 100, 
  25.         'BristleFirmness': 1, 
  26.         'BristleSize': 100, 
  27.         'HeadCleaningMethod': App.Constants.ArtMediaBrushCleaning.ManualClean, 
  28.         'GeneralSettings': {
  29.             'ExecutionMode': App.Constants.ExecutionMode.Default, 
  30.             'RandomSeed': None, 
  31.             'AutoActionMode': App.Constants.AutoActionMode.Match
  32.             }
  33.         }
  34.  
  35. def Do(Environment):
  36.     # OilBrushTool_LOCALIZED
  37.     App.Do( Environment, 'OilBrushTool',         Preset_OilBrushTool())
  38.  
  39.